home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Network LegalNotice.xpl < prev    next >
Text File  |  2001-04-13  |  2KB  |  84 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\60) Before Login Window"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\30) Before Login Window"
  6. "NAME"="Legal Notice"
  7. "VERSION"="1.54"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Message Title"
  10. "TEXT 2"="Message Text"
  11. "DESCRIPTION 1"="You can configure a message that is displayed before a user is able to logon to this machine."
  12. "DESCRIPTION 2"="This message is normally used for legal notices or something similar."
  13. "DESCRIPTION 3"="Note that both fields have to contain a value, otherwise the message will not be displayed!"
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18. "COMMENT 2"="(Windows 95 Support by StaSys)"
  19.  
  20.  
  21. sP=""
  22. bOK=false
  23. v1="LegalNoticeCaption"
  24. v2="LegalNoticeText"
  25.  
  26. Sub Plugin_Initialize 
  27.  sP="HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\"
  28.  if RegPathExists(sp) then
  29.   'Windows NT
  30.   bOK=true
  31.  else
  32.   'Windows 95?
  33.   sP="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WinLogon\"
  34.   if RegPathExists(sp) then
  35.    bOK=true
  36.   else
  37.    bOK=false
  38.   end if
  39.  end if
  40.  
  41.  if bOK=true then
  42.   s=RegReadValue(sp&v1)
  43.   Call SetUIElement(1,s)
  44.  
  45.   s=RegReadValue(sp&v2)
  46.   Call SetUIElement(2,s)
  47.  else
  48.   Disable
  49.  end if
  50. End Sub
  51.  
  52. Sub Plugin_CheckData(ElementIndex)
  53. End Sub
  54.  
  55. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  56.  s1=GetUIElement(1)
  57.  s2=GetUIElement(2)
  58.  
  59.  if Len(s1)>0 and Len(s2)>0 then
  60.     Call RegWriteValue(sp&v1,s1,1)
  61.     Call RegWriteValue(sp&v2,s2,1)
  62.     Call Restart
  63.  else
  64.   if Len(s1)=0 and Len(s2)=0 then
  65.      s=RegReadValue(sp&v1)
  66.      if IsEmpty(s)=false then Call RegDeleteValue(sp&v1)
  67.  
  68.      s=RegReadValue(sp&v2)
  69.      if IsEmpty(s)=false then Call RegDeleteValue(sp&v2) 
  70.    
  71.    Call Logoff
  72.   else
  73.    Call MsgError("Please enter a text in both fields, otherwise the message will not be displayed.")
  74.   end if
  75.  end if
  76.  
  77. End Sub
  78.  
  79. Sub Plugin_Terminate 
  80. End Sub
  81.  
  82.  
  83.  
  84.